diff options
| author | real-zephex <[email protected]> | 2024-03-21 19:19:54 +0530 |
|---|---|---|
| committer | real-zephex <[email protected]> | 2024-03-21 19:19:54 +0530 |
| commit | 8a086256722e6150b45791e86d0bc6d407146c28 (patch) | |
| tree | 9066c5742a74ce82bafc6947704fa22073fee004 /src/app/info/[id] | |
| parent | changes: reverted to previous commit (diff) | |
| download | dramalama-8a086256722e6150b45791e86d0bc6d407146c28.tar.xz dramalama-8a086256722e6150b45791e86d0bc6d407146c28.zip | |
fix: trying to fix the endpoints
Diffstat (limited to 'src/app/info/[id]')
| -rw-r--r-- | src/app/info/[id]/page.jsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app/info/[id]/page.jsx b/src/app/info/[id]/page.jsx index 5048612..5120128 100644 --- a/src/app/info/[id]/page.jsx +++ b/src/app/info/[id]/page.jsx @@ -42,7 +42,7 @@ export default async function AnimeInfo({ params }) { async function getAnimeInfo(anime_id) { const res = await fetch( - "https://anime-sensei-api.vercel.app/anime/gogoanime/info/" + anime_id + "https://dramalama-api.vercel.app/anime/gogoanime/info/" + anime_id ); const data = res.json(); return data; |